home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / tinyweb.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  48 lines

  1.  
  2. if(description)
  3. {
  4.  script_id(11894);
  5.  script_bugtraq_id(8810);
  6.  script_version("$Revision: 1.4 $");
  7.  
  8.  name["english"] = "TinyWeb 1.9";
  9.  
  10.  script_name(english:name["english"]);
  11.  
  12.  desc["english"] = "
  13. The remote host is running TinyWeb version 1.9 or older.
  14.  
  15. A remote user can issue an HTTP GET request for /cgi-bin/.%00./dddd.html 
  16. and cause the server consume large amounts of CPU time (88%-92%).
  17.  
  18. Solution : contact vendor http://www.ritlabs.com
  19. Risk factor : High";
  20.  
  21.  script_description(english:desc["english"]);
  22.  
  23.  summary["english"] = "Checks for version of TinyWeb";
  24.  
  25.  script_summary(english:summary["english"]);
  26.  
  27.  script_category(ACT_GATHER_INFO);
  28.  
  29.  
  30.  script_copyright(english:"This script is Copyright (C) 2003 Matt North");
  31.  family["english"] = "Misc.";
  32.  script_family(english:family["english"]);
  33.  script_dependencie("find_service.nes", "http_version.nasl");
  34.  exit(0);
  35. }
  36.  
  37. include("http_func.inc");
  38.  
  39. port = get_http_port(default:80);
  40.  
  41.  
  42. if(get_port_state(port)) {
  43.         ban = get_http_banner(port: port);
  44.         if(!ban) exit(0);
  45.         if(egrep(pattern:"^Server:.*TinyWeb/(0\..*|1\.[0-9]([^0-9]|$))",
  46.          string:ban))security_hole(port);
  47. }
  48.